choice + batch menu  -  d4rk-W
::::::::::::::::::::::::::::::
        :\\\
 "   " - .........
     choice           
  ...
  :
choice /c:yourchoices /S /N /T:Y,tt textwillshowed
:
choice -    ...
/c:yourchoice  -  choice      y - n  -...
"       .
  /c:123       1 2  3 .
/s    ...        ...
    N  n
/n                 ...
/T:Y,tt  Y       ,     ,    
    ...tt          ...
textwillshowed -     ...

              ...
   " if errorlevel .
              "" ...
        1     1.exe   2    
2.exe      3.exe ...    2        25...
 
echo 1.it will run 1.exe!
echo 2.it will run 2.exe!
echo 3.it will run 3.exe!
choice /c:123 /T:2,25 "what you need to run"
if errorlevel 3 goto 3
if errorlevel 2 goto 2
if errorlevel 1 goto 1
:1
start 1.exe
goto end
:2
start 2.exe
goto end
:3
start 3.exe
goto end
:end
echo bye!
 
  ,    ,          
if errorlevel
...   ... ,   ,     !
 ,
d4rk-W